home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / Projects / Tutorial Material / Basic Tutorial / mctest5 < prev    next >
Lisp/Scheme  |  1998-10-26  |  825b  |  32 lines

  1. ; tutorial example 5 - mctest5
  2.  
  3. (initdef)
  4. (defsym a '(b c a))
  5. (defsym b '(f e))
  6. (defsym c '(b a))
  7. (defsym d '(a g))
  8.  
  9. (def-symbol
  10.   test1 (gen-trans a 4)
  11.   test2 (gen-trans d 4)
  12.   test3 (gen-trans c 4)
  13.   test4 (gen-trans b 4)
  14. )
  15.  
  16. (def-length
  17.   default '1/16
  18. )
  19.  
  20. (setq tonals (activate-tonality (whole-tone c 5) (chromatic c 6)))
  21. (setq tonals1 (activate-tonality (chromatic c 6) (whole-tone c 5)))
  22.  
  23. (compile-song-p "ccl;output:" 1/8 "part5"
  24. ; BARS               |-------|-------|-------|-------|
  25. changes  tonals     "            .   .  .      .    ."
  26. changes2 tonals1    "    .   .    .   .  .  .     . ."
  27. test1    changes    "--     ----- --- ---    ----- --"
  28. test2    changes2   "  ---  ---   -- - --- --- --- --"
  29. test3    changes2   "    ---- ---   - - --   --- -- -"
  30. test4    changes    "      -----  - - - --  - - - - -" 
  31. )
  32.